home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Text / print / HPDJ900Src.lha / macros.i < prev    next >
Text File  |  1999-11-21  |  2KB  |  71 lines

  1. *
  2. * Copyright (c) 1992 Commodore-Amiga, Inc.
  3. * This example is provided in electronic form by Commodore-Amiga, Inc. for 
  4. * use with the "Amiga ROM Kernel Reference Manual: Devices", 3rd Edition, 
  5. * published by Addison-Wesley (ISBN 0-201-56775-X).
  6. * The "Amiga ROM Kernel Reference Manual: Devices" contains additional 
  7. * information on the correct usage of the techniques and operating system 
  8. * functions presented in these examples.  The source and executable code 
  9. * of these examples may only be distributed in free electronic form, via 
  10. * bulletin board or as part of a fully non-commercial and freely 
  11. * redistributable diskette.  Both the source and executable code (including 
  12. * comments) must be included, without modification, in any copy.  This 
  13. * example may not be published in printed form or distributed with any
  14. * commercial product.  However, the programming techniques and support
  15. * routines set forth in these examples may be used in the development 
  16. * of original executable software products for Commodore Amiga computers.
  17. * All other rights reserved.
  18. * This example is provided "as-is" and is subject to change; no
  19. * warranties are made.  All use is at your own risk. No liability or
  20. * responsibility is assumed.
  21. *
  22. **********************************************************************
  23. *
  24. *       printer device macro definitions
  25. *
  26. **********************************************************************
  27.  
  28. *------ external definition macros -----------------------------------
  29.  
  30. XREF_EXE        MACRO
  31.         XREF            _LVO\1
  32.                 ENDM
  33.  
  34. XREF_DOS        MACRO
  35.         XREF            _LVO\1
  36.                 ENDM
  37.  
  38. XREF_GFX        MACRO
  39.         XREF            _LVO\1
  40.                 ENDM
  41.  
  42. XREF_ITU        MACRO
  43.         XREF            _LVO\1
  44.                 ENDM
  45.  
  46. *------ library dispatch macros --------------------------------------
  47.  
  48. CALLEXE         MACRO
  49.                 CALLLIB _LVO\1
  50.                 ENDM
  51.  
  52. LINKEXE         MACRO
  53.                 LINKLIB _LVO\1,_SysBase
  54.                 ENDM
  55.  
  56. LINKDOS         MACRO
  57.                 LINKLIB _LVO\1,_DOSBase
  58.                 ENDM
  59.  
  60. LINKGFX         MACRO
  61.                 LINKLIB _LVO\1,_GfxBase
  62.                 ENDM
  63.  
  64. LINKITU         MACRO
  65.                 LINKLIB _LVO\1,_IntuitionBase
  66.                 ENDM
  67.